Valid for Sitecore
5.2, 5.1.1
Configure the Hello World Database in the web.config file
Prev Next |
Locate the <databases> section and add the following lines to the section:
<database id="helloworld" singleInstance="true"
type="Sitecore.Data.Database, Sitecore.Kernel">
<param desc="name">$(id)</param>
<dataProviders hint="list:AddDataProvider">
<dataProvider ref="dataProviders/helloworldprovider"/>
</dataProviders>
</database>
Save the web.config file. Note, this will restart the web server.
Prev Next